-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support RSC #1582
feat: support RSC #1582
Conversation
Playwright Test Component is ready. |
Preview is ready. |
@@ -8,50 +8,50 @@ export function CheckboxShowcase() { | |||
return ( | |||
<Showcase> | |||
<ShowcaseItem title="Size"> | |||
<p> | |||
<div style={{marginBlock: '1em'}}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the motivation?
@@ -38,7 +34,7 @@ export const ControlLabel = React.forwardRef<HTMLLabelElement, Props>( | |||
className={b({size, disabled}, className)} | |||
data-qa={qa} | |||
> | |||
{clonedControl} | |||
<div className={b('indicator')}>{control}</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will result in different markup, is it ok?
Visual Tests Report is ready. |
return ( | ||
<div className={b({size})} ref={ref}> | ||
<div className={b({size})}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it a breaking change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's inner component.
No description provided.